blob: b1ab691a087378e38c90cedc41272d325d8d4193 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Metadata } from 'next';
import { GoalsPage } from './GoalsPage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <GoalsPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Goals',
};
|